home *** CD-ROM | disk | FTP | other *** search
- overSound = new Sound(this);
- overSound.attachSound("btnOver");
- loadBar_mc._width = 0;
- hitVal = 0;
- var Plink;
- hit_mc.onRollOver = function()
- {
- this.colorTo(16770048,0,"easeOutSine");
- name_txt.colorTo(0,0,"easeOutSine");
- arrow_txt.colorTo(16711680,0,"easeOutSine");
- overSound.start();
- _root.rollOver_txt.html = true;
- _root.rollOver_txt.autoSize = "left";
- _root.rollOver_txt.wordWrap = true;
- _root.rollOver_txt.htmlText = HRLink;
- };
- hit_mc.onRollOut = function()
- {
- if(hitVal == 0)
- {
- this.colorTo(0,0.4,"easeOutSine");
- name_txt.colorTo(16777215,0.4,"easeOutSine");
- }
- else
- {
- this.colorTo(0,0.4,"easeOutSine");
- name_txt.colorTo(16770048,0.4,"easeOutSine");
- }
- arrow_txt.colorTo(16777215,0.4,"easeOutSine");
- _root.rollOver_txt.htmlText = "";
- };
- hit_mc.onRelease = hit_mc.onReleaseOutside = function()
- {
- _root.downloadCount_var = PNum;
- _root.brandEnabler("button" + PNum + "_mc");
- _root.movieText_mc.alphaTo(0,0.3,"easeOutQuad");
- getURL(PLink,"");
- };
-